home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Musique / Quod Libet / quodlibet-3.3.0-portable.exe / quodlibet-3.3.0-portable / data / bin / new.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2014-12-31  |  842b  |  18 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. '''Create new objects of various types.  Deprecated.
  5.  
  6. This module is no longer required except for backward compatibility.
  7. Objects of most types can now be created by calling the type object.
  8. '''
  9. from warnings import warnpy3k
  10. warnpy3k("The 'new' module has been removed in Python 3.0; use the 'types' module instead.", stacklevel = 2)
  11. del warnpy3k
  12. from types import ClassType as classobj
  13. from types import FunctionType as function
  14. from types import InstanceType as instance
  15. from types import MethodType as instancemethod
  16. from types import ModuleType as module
  17. from types import CodeType as code
  18.